home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Netware Super Library
/
Netware Super Library.iso
/
vbasic
/
nivb
/
nwnamesp.bas
< prev
next >
Wrap
BASIC Source File
|
1993-06-03
|
1KB
|
19 lines
'NWNAMESP.BAS NetWare Name Space Services Interface for Visual Basic For Windows
'Version 1.0
'Novell Systems Research Department, Novell, Inc.
'Copyright (c) 1993, Novell, Inc.
'This interface is not supported through Novell's regular
'support channels. See README.TXT for more information.
'All Name Space functions apply to NetWare 3.x/4.x only
Global Const DOS_NAME_SPACE = 0
Global Const MAC_NAME_SPACE = 1
Declare Function FillNameSpaceBuffer Lib "NWNETAPI.DLL" (ByVal serverConnID%, ByVal volumeNumber%, buffer As NWBUFFER) As Integer
Declare Function GetDataStreamInfo Lib "NWNETAPI.DLL" (buffer As NWBUFFER, ByVal dataStreamType%, ByVal dataStreamName$, volSupports%) As Integer
Declare Function GetNameSpaceEntry Lib "NWNETAPI.DLL" (ByVal serverConnID%, ByVal volumeNum%, sequence&, ByVal nsType%, entryInfo As Any) As Integer
Declare Function GetNameSpaceInfo Lib "NWNETAPI.DLL" (buffer As NWBUFFER, ByVal nsType%, ByVal nameSpaceName$, osReady%, volSupports%) As Integer
Declare Function GetNumNameSpaceAndDataStreams Lib "NWNETAPI.DLL" (buffer As NWBUFFER, numNameSpaces%, numDataStreams%) As Integer